home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Utilities / Workbench / advent / Install-Advent next >
Text File  |  1998-06-24  |  962b  |  57 lines

  1. ; Protection Encryption System (PES) Main Install Script
  2. ; $VER: PES Install Script v1.00
  3.  
  4. (set @default-dest "SYS:")
  5.  
  6. ; English language
  7.  
  8. (set #Adventdocs-location
  9. (cat "Select location to put the Advent docs, a "
  10.      "directory will NOT be created."
  11. ))
  12.  
  13. (set #copying-files
  14. (cat "Copying files..."
  15. ))
  16.  
  17. (set #help-askbool
  18. (cat "Please select Yes to install the file(s) "
  19.      "or select No so they are not installed. "
  20. ))
  21.  
  22. ;--------------------------------------------------
  23.  
  24. (set dest1    (askdir    (prompt #Adventdocs-location)
  25.             (default @default-dest)
  26.             (help @askdir-help)
  27.             )
  28. )
  29.  
  30. (set dest2 "Sys:WBStartup")
  31. (set dest3 "S:")
  32.  
  33. (copyfiles
  34.     (source "Install/Bin/")
  35.     (dest dest2)
  36.     (choices "Advent_v1.00")
  37.     (infos)
  38.     (help @copyfiles-help)
  39. )
  40.  
  41. (copyfiles
  42.     (source "Install/Data/")
  43.     (dest dest3)
  44.     (choices "Advent.gfx")
  45.     (infos)
  46.     (help @copyfiles-help)
  47. )
  48.  
  49. (copyfiles
  50.     (source "Install/Docs/")
  51.     (dest dest1)
  52.     (choices "Advent-Doc")
  53.     (infos)
  54.     (help @copyfiles-help)
  55. )
  56.  
  57.